@sheetwrite/coretype
Loads one row-only page for the full-width compatibility adapter.
- Package
@sheetwrite/core- Source
packages/core/src/legacy-full-width-datasource.ts#L10
Declaration
export type LegacyRowLoader = ( request: DataSourceRequestinterface DataSourceRequest {
protocol: 2;
sheet: SheetId;
start: number;
end: number;
columns: readonly DataSourceColumnBand[];
signal: AbortSignal;
revision: number;
}interface DataSourceRequest {
protocol: 2;
sheet: SheetId;
start: number;
end: number;
columns: readonly DataSourceColumnBand[];
signal: AbortSignal;
revision: number;
}interface DataSourceRequest {
protocol: 2;
sheet: SheetId;
start: number;
end: number;
columns: readonly DataSourceColumnBand[];
signal: AbortSignal;
revision: number;
}Cancellable sheet rectangle requested from a DataSource.API reference →,) => Promise<LegacyRowPageinterface LegacyRowPage {
readonly start: number;
readonly rows: readonly RowData[];
}interface LegacyRowPage {
readonly start: number;
readonly rows: readonly RowData[];
}interface LegacyRowPage {
readonly start: number;
readonly rows: readonly RowData[];
}Row-only page shape accepted by the full-width compatibility adapter.API reference →> | LegacyRowPageinterface LegacyRowPage {
readonly start: number;
readonly rows: readonly RowData[];
}interface LegacyRowPage {
readonly start: number;
readonly rows: readonly RowData[];
}interface LegacyRowPage {
readonly start: number;
readonly rows: readonly RowData[];
}Row-only page shape accepted by the full-width compatibility adapter.API reference →;