//#region ../encryption/src/crypto-runtime.d.ts /** * Minimal structural views over the WebCrypto surface this package touches. * * They exist so the package type-checks without requiring `lib.dom` (browser) * or `@types/node` (server) in the consumer's tsconfig — the real `CryptoKey` * and `SubtleCrypto` are structurally assignable to these. */ type CryptoKeyLike = { readonly type: string; readonly extractable: boolean; }; //#endregion export { CryptoKeyLike }; //# sourceMappingURL=crypto-runtime.d.mts.map