2021-11-26 20:57:51 +08:00
|
|
|
import { ActionInterface } from './constants';
|
2022-06-26 21:02:18 +08:00
|
|
|
export declare const isNullOrUndefined: (value: unknown) => value is "" | null | undefined;
|
2021-11-26 20:57:51 +08:00
|
|
|
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;
|
|
|
|
export declare const extractErrorMessage: (error: unknown) => string;
|
|
|
|
/** Strips the protocol from a provided URL. */
|
|
|
|
export declare const stripProtocolFromUrl: (url: string) => string;
|