7 lines
97 B
TypeScript
7 lines
97 B
TypeScript
export type Registrars = {
|
|
name: string;
|
|
indexes?: Index[];
|
|
};
|
|
|
|
type Index = [string, any?];
|