js-web-screen-shot
Version:
web端自定义截屏插件(原生JS版)
16 lines (15 loc) • 533 B
TypeScript
declare class TextInputStore {
private initialState;
textSizeContainer: null | HTMLDivElement;
optionTextSizeController: null | HTMLDivElement;
private readonly applyInitialState;
constructor();
private getTextSizeContainer;
private getOptionTextSizeController;
setTextStatus(status: boolean): void;
setTextSizeOptionStatus(status: boolean): void;
setTextSizePanelStatus(status: boolean): void;
reset(): void;
}
declare const textInputStore: TextInputStore;
export default textInputStore;