made a start on data grid implementation
This commit is contained in:
parent
a543259fe4
commit
70c15c4094
12 changed files with 1083 additions and 210 deletions
7
src/global.d.ts
vendored
7
src/global.d.ts
vendored
|
@ -1 +1,8 @@
|
|||
/// <reference types="@solidjs/start/env" />
|
||||
|
||||
|
||||
interface IterableIterator<T> {
|
||||
map<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): IterableIterator<U>;
|
||||
filter<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any): IterableIterator<S>;
|
||||
toArray(): T[];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue