update dependencies and generate typings (#44)

This commit is contained in:
yz-yu
2019-01-21 19:54:21 +08:00
committed by GitHub
parent 3daedfa284
commit 128deca040
11 changed files with 278 additions and 11 deletions

3
typings/record/index.d.ts vendored Normal file
View File

@@ -0,0 +1,3 @@
import { recordOptions, listenerHandler } from '../types';
declare function record(options?: recordOptions): listenerHandler | undefined;
export default record;

2
typings/record/observer.d.ts vendored Normal file
View File

@@ -0,0 +1,2 @@
import { observerParam, listenerHandler } from '../types';
export default function initObservers(o: observerParam): listenerHandler;