Function EnvironmentApiAxiosParamCreator

EnvironmentApi - axios parameter creator

  • Parameters

    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>