Comparing version 4.1.2 to 4.1.3
@@ -1,9 +0,10 @@ | ||
type ClippieContent = string | Blob | (string | Blob)[]; | ||
type Success = boolean; | ||
type ClippieOpts = { | ||
/** The content to copy */ | ||
export type ClippieContent = string | Blob | (string | Blob)[]; | ||
/** A boolean indicating whether the copying was successful */ | ||
export type ClippieResult = boolean; | ||
export type ClippieOpts = { | ||
/** Whether to reject on unexpected errors. */ | ||
reject?: boolean; | ||
}; | ||
export declare function clippie(content: ClippieContent, { reject }?: ClippieOpts): Promise<Success>; | ||
export {}; | ||
export declare function clippie(content: ClippieContent, { reject }?: ClippieOpts): Promise<ClippieResult>; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "clippie", | ||
"version": "4.1.2", | ||
"version": "4.1.3", | ||
"description": "Teeny-tiny browser clipboard copy", | ||
@@ -17,16 +17,16 @@ "author": "silverwind", | ||
"devDependencies": { | ||
"@types/node": "20.14.7", | ||
"@types/node": "20.14.10", | ||
"eslint": "8.57.0", | ||
"eslint-config-silverwind": "88.1.0", | ||
"eslint-config-silverwind-typescript": "4.0.2", | ||
"eslint-config-silverwind": "88.2.4", | ||
"eslint-config-silverwind-typescript": "5.1.3", | ||
"jsdom": "24.1.0", | ||
"typescript": "5.4.5", | ||
"typescript-config-silverwind": "5.1.1", | ||
"updates": "16.2.0", | ||
"typescript": "5.5.3", | ||
"typescript-config-silverwind": "5.1.3", | ||
"updates": "16.2.1", | ||
"versions": "12.1.2", | ||
"vite": "5.3.1", | ||
"vite-config-silverwind": "2.2.2", | ||
"vitest": "1.6.0", | ||
"vitest-config-silverwind": "9.0.6" | ||
"vite": "5.3.3", | ||
"vite-config-silverwind": "3.0.0", | ||
"vitest": "2.0.2", | ||
"vitest-config-silverwind": "9.1.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4386
54