Files
db/src/databases/registrars.ts

7 lines
97 B
TypeScript

export type Registrars = {
name: string;
indexes?: Index[];
};
type Index = [string, any?];