Function EnvironmentApiAxiosParamCreator
- EnvironmentApiAxiosParamCreator(
configuration?: Configuration,
): {
getDefaultDirectoryBrowser: (
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
getDirectoryContents: (
path: string,
includeFiles?: boolean,
includeDirectories?: boolean,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
getDrives: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
getNetworkShares: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
getParentPath: (
path: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
validatePath: (
validatePathDto: ValidatePathDto,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
} Returns {
getDefaultDirectoryBrowser: (
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
getDirectoryContents: (
path: string,
includeFiles?: boolean,
includeDirectories?: boolean,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
getDrives: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
getNetworkShares: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
getParentPath: (
path: string,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
validatePath: (
validatePathDto: ValidatePathDto,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>;
}
getDefaultDirectoryBrowser: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>
getDirectoryContents: (
path: string,
includeFiles?: boolean,
includeDirectories?: boolean,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
getDrives: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>
getNetworkShares: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>
getParentPath: (path: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
validatePath: (
validatePathDto: ValidatePathDto,
options?: RawAxiosRequestConfig,
) => Promise<RequestArgs>
EnvironmentApi - axios parameter creator
Export