typings: textinput
parent
f1c03e4e72
commit
d8f65fec7b
|
|
@ -8,3 +8,4 @@ declare function require(moduleName: "Layout"): typeof Layout.Layout;
|
|||
declare function require(moduleName: "power_usage"): PowerUsageModule;
|
||||
declare function require(moduleName: "exstats"): typeof ExStats;
|
||||
declare function require(moduleName: "time_utils"): typeof TimeUtils;
|
||||
declare function require(moduleName: "textinput"): typeof TextInput;
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
declare module TextInput {
|
||||
function input(options: { text: string }): Promise<string>;
|
||||
}
|
||||
Loading…
Reference in New Issue