UNPKG

@jsvfs/adapter-azure-blob

Version:
8 lines (7 loc) 500 B
import { PathParseResult } from './types'; /** Function for iterating over a string and ensuring it is a valid container name. * See [Microsofts documentation](https://docs.microsoft.com/en-us/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata#container-names) */ export declare function isContainerName(str: string): boolean; /** Parses a given path into a container and blob name. */ export declare function parse(path: string, root: string): PathParseResult;