cnpmcore
Version:
16 lines (15 loc) • 351 B
TypeScript
import { Bone } from 'leoric';
import { HookType } from '../../common/enum/Hook';
export declare class Hook extends Bone {
id: bigint;
createdAt: Date;
updatedAt: Date;
hookId: string;
type: HookType;
ownerId: string;
name: string;
endpoint: string;
secret: string;
latestTaskId: string;
enable: boolean;
}