@gesetzefinden/ris
Version:
TypeScript definitions for the RIS API
20 lines (10 loc) • 406 B
TypeScript
// Source files:
//
interface BaseType {}
export interface _any extends BaseType { content: any; }
export interface _boolean extends BaseType { content: boolean; }
export interface _Date extends BaseType { content: Date; }
export interface _number extends BaseType { content: number; }
export interface _string extends BaseType { content: string; }
export interface document extends BaseType {
}