@lovebowls/leagueelements
Version:
League Elements package for LoveBowls
18 lines • 353 B
TypeScript
/**
* Base interface for all league elements
*/
export interface LeagueElement {
id: string;
type: string;
createdAt: Date;
updatedAt: Date;
}
/**
* Configuration options for league elements
*/
export interface LeagueElementConfig {
id?: string;
type: string;
[key: string]: unknown;
}
//# sourceMappingURL=index.d.ts.map