cnpmcore
Version:
Private NPM Registry for Enterprise
16 lines (15 loc) • 370 B
TypeScript
import type { HookType } from '../../common/enum/Hook.ts';
import { Bone } from '../util/leoric.ts';
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;
}