@senx/discovery-code
Version:
Discovery Code Editor
17 lines (16 loc) • 432 B
TypeScript
import { Config } from '../../model/config';
export declare class DiscoveryCodeResult {
theme: 'light' | 'dark';
config: Config | string;
debug: boolean;
result: string;
private LOG;
private innerResult;
private innerResultStr;
constructor();
setDebug(newValue: boolean): void;
setResult(res: string): void;
componentWillLoad(): void;
isArray(arr: any): boolean;
render(): any;
}