import { IRequestMetadata } from "../RequestMetadata.type"; import { IStateOptions } from "./StateOptions.type"; import { KeyValuePairType } from "../KeyValuePair.type"; export type StateDeleteOptions = IStateOptions & { /** * Metadata to be passed to the operation. */ metadata: IRequestMetadata; /** * Optional Etag for Optimistic Concurrency Control */ etag: KeyValuePairType["etag"]; };