This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/flow-typed/npm/copy-to-clipboard_v3.x.x.js

14 lines
380 B
JavaScript

// flow-typed signature: 350413ab85bd03f3d1450c0ae307d106
// flow-typed version: c6154227d1/copy-to-clipboard_v3.x.x/flow_>=v0.104.x
// @flow
declare module "copy-to-clipboard" {
declare export type Options = {|
debug?: boolean,
message?: string,
format?: "text/plain" | "text/html",
|};
declare module.exports: (text: string, options?: Options) => boolean;
}