modern_spreadsheet/dist/modules/row.d.ts

10 lines
191 B
TypeScript

export type RowConstructorProps = {
height: number;
title: string;
};
export declare class Row {
height: number;
title: string;
constructor(props: RowConstructorProps);
}