UNPKG

@azure/storage-file-share

Version:
25 lines 677 B
/** * Allowed IP range for a SAS. */ export interface SasIPRange { /** * Starting IP address in the IP range. * If end IP doesn't provide, start IP will the only IP allowed. */ start: string; /** * Optional. IP address that ends the IP range. * If not provided, start IP will the only IP allowed. */ end?: string; } /** * Generate SasIPRange format string. For example: * * "8.8.8.8" or "1.1.1.1-255.255.255.255" * * @param ipRange - A range of IP addresses. * @returns string representation of the IP range. */ export declare function ipRangeToString(ipRange: SasIPRange): string; //# sourceMappingURL=SasIPRange.d.ts.map