UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

14 lines (13 loc) 544 B
export interface GoalOwnersInner { _id?: string; _type?: GoalOwnersInnerTypeEnum; } export declare enum GoalOwnersInnerTypeEnum { role = "role", team = "team", user = "user" } export declare function instanceOfGoalOwnersInner(value: object): boolean; export declare function GoalOwnersInnerFromJSON(json: any): GoalOwnersInner; export declare function GoalOwnersInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): GoalOwnersInner; export declare function GoalOwnersInnerToJSON(value?: GoalOwnersInner | null): any;