Function EnvironmentApiAxiosParamCreator
- EnvironmentApiAxiosParamCreator(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>)
- (options?): Promise<RequestArgs>
Parameters
Optional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
getDirectoryContents: ((path: string, includeFiles?: boolean, includeDirectories?: boolean, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (path, includeFiles?, includeDirectories?, options?): Promise<RequestArgs>
Parameters
- path: string
Optional
includeFiles: booleanOptional
includeDirectories: booleanOptional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
getDrives: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (options?): Promise<RequestArgs>
Parameters
Optional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
getNetworkShares: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (options?): Promise<RequestArgs>
Parameters
Optional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
getParentPath: ((path: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (path, options?): Promise<RequestArgs>
Parameters
- path: string
Optional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
validatePath: ((validatePathDto: ValidatePathDto, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)
- (validatePathDto, options?): Promise<RequestArgs>
Parameters
- validatePathDto: ValidatePathDto
Optional
options: RawAxiosRequestConfig = {}
Returns Promise<RequestArgs>
EnvironmentApi - axios parameter creator
Export