@azure/data-tables
Version:
An isomorphic client library for the Azure Tables service.
14 lines • 539 B
TypeScript
interface ContinuationToken {
nextPartitionKey: string;
nextRowKey?: string;
}
/**
* Encodes the nextPartitionKey and nextRowKey into a single continuation token
*/
export declare function encodeContinuationToken(nextPartitionKey?: string, nextRowKey?: string): string | undefined;
/**
* Decodes a continuationToken into an object containing a nextPartitionKey and nextRowKey
*/
export declare function decodeContinuationToken(encodedToken: string): ContinuationToken;
export {};
//# sourceMappingURL=continuationToken.d.ts.map