@jsvfs/adapter-azure-blob
Version:
An adapter for Azure Storage Blobs.
8 lines (7 loc) • 500 B
TypeScript
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;