@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
24 lines (23 loc) • 742 B
TypeScript
export interface GoalValue {
_id: string;
_type?: GoalValueTypeEnum;
_rootId: string;
_createdOn?: Date;
_createdBy: string;
_updatedOn?: Date;
_updatedBy?: string;
_archivedOn?: Date;
_archivedBy?: string;
_deletedOn?: Date;
_deletedBy?: string;
_operationId?: string;
_isPublic?: boolean;
value: number;
}
export declare enum GoalValueTypeEnum {
goal_value = "goal_value"
}
export declare function instanceOfGoalValue(value: object): boolean;
export declare function GoalValueFromJSON(json: any): GoalValue;
export declare function GoalValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): GoalValue;
export declare function GoalValueToJSON(value?: GoalValue | null): any;