You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
352 B

import { ApiV2 } from 'xdl';
export declare type WebhookEvent = 'build';
export declare function validateSecret({ secret }: {
secret?: string;
}): string | null;
export declare function generateSecret(): string;
export declare function setupAsync(projectRoot: string): Promise<{
experienceName: string;
project: any;
client: ApiV2;
}>;