8 lines
183 B
TypeScript
8 lines
183 B
TypeScript
declare function show(txt: boolean | string): void;
|
|
declare function hide(): void;
|
|
declare const _default: {
|
|
show: typeof show;
|
|
hide: typeof hide;
|
|
};
|
|
export default _default;
|