astro-ghostcms/.pnpm-store/v3/files/4c/09ee7a2cdee202e4918668f93a8...

8 lines
250 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
type Options = {
strict?: boolean;
};
declare function destr<T = unknown>(value: any, options?: Options): T;
declare function safeDestr<T = unknown>(value: any, options?: Options): T;
export { type Options, destr as default, destr, safeDestr };