7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
import { RowData } from '../helper';
|
|
export interface ProjectOptions {
|
|
fields: string[];
|
|
as?: string[];
|
|
}
|
|
export declare function project(rows: RowData[], options: ProjectOptions): RowData[];
|