7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
import { RowData } from '../helper';
|
|
interface CrossParams {
|
|
as: [string, string];
|
|
}
|
|
export declare function cross(rows: any[], options?: CrossParams): RowData[];
|
|
export {};
|