mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
19 lines
586 B
TypeScript
19 lines
586 B
TypeScript
// Type definitions for ZeroClipboard
|
|
// Project: https://github.com/jonrohan/ZeroClipboard
|
|
// Definitions by: Eric J. Smith <https://github.com/ejsmith>
|
|
// Updated by: Blake Niemyjski <https://github.com/niemyjski>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
module ZeroClipboard {
|
|
export function setMoviePath(moviePath: string);
|
|
|
|
export class Client {
|
|
constructor(element?: any);
|
|
setText(text: string);
|
|
ready: bool;
|
|
clipText: string;
|
|
handCursorEnabled: bool;
|
|
cssEffects: bool;
|
|
glue(element);
|
|
}
|
|
} |