You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
402 B
Plaintext
15 lines
402 B
Plaintext
11 months ago
|
import { DomElement } from '../../utils/dom-core';
|
||
|
export declare class todo {
|
||
|
private template;
|
||
|
private checked;
|
||
|
private $todo;
|
||
|
private $child;
|
||
|
constructor($orginElem?: DomElement);
|
||
|
init(): void;
|
||
|
getInput(): DomElement;
|
||
|
getInputContainer(): DomElement;
|
||
|
getTodo(): DomElement;
|
||
|
}
|
||
|
declare function createTodo($orginElem?: DomElement): todo;
|
||
|
export default createTodo;
|