mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
10 lines
643 B
TypeScript
10 lines
643 B
TypeScript
import { ActionInterface } from './constants';
|
|
export declare const isNullOrUndefined: (value: unknown) => boolean;
|
|
export declare const generateTokenType: (action: ActionInterface) => string;
|
|
export declare const generateRepositoryPath: (action: ActionInterface) => string;
|
|
export declare const generateFolderPath: (action: ActionInterface) => string;
|
|
export declare const checkParameters: (action: ActionInterface) => void;
|
|
export declare const suppressSensitiveInformation: (str: string, action: ActionInterface) => string;
|
|
/** Strips the protocol from a provided URL. */
|
|
export declare const stripProtocolFromUrl: (url: string) => string;
|