智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/4c/4c99981b68d6f29e1f1e7dcc257...

10 lines
228 B

import each = require('./each');
import types = require('./types');
declare class Select {
constructor(selector: string | Element);
find(selector: string): Select;
each(fn: types.AnyFn): Select;
}
export = Select;