@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
16 lines (15 loc) • 532 B
TypeScript
export interface ObjectRef {
_id?: string;
_type?: ObjectRefTypeEnum;
}
export declare enum ObjectRefTypeEnum {
team = "team",
role = "role",
user = "user",
goal = "goal",
agreement = "agreement"
}
export declare function instanceOfObjectRef(value: object): boolean;
export declare function ObjectRefFromJSON(json: any): ObjectRef;
export declare function ObjectRefFromJSONTyped(json: any, ignoreDiscriminator: boolean): ObjectRef;
export declare function ObjectRefToJSON(value?: ObjectRef | null): any;