github-pages-deploy-action/lib/util.d.ts

7 lines
451 B
TypeScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
import { ActionInterface } from './constants';
2020-03-02 22:38:52 +08:00
export declare const isNullOrUndefined: (value: any) => boolean;
2020-03-07 11:45:40 +08:00
export declare const generateTokenType: (action: ActionInterface) => string;
export declare const generateRepositoryPath: (action: ActionInterface) => string;
export declare const hasRequiredParameters: (action: ActionInterface) => void;
export declare const suppressSensitiveInformation: (str: string, action: ActionInterface) => string;