interface IRWSModel {
    getCollection: (() => string);
    id: string;
    save: (() => void);
    [key: string]: any;
}

Implemented by

Indexable

[key: string]: any

Properties

Properties

getCollection: (() => string)

Type declaration

    • (): string
    • Returns string

id: string
save: (() => void)

Type declaration

    • (): void
    • Returns void

Generated using TypeDoc