@odoo/o-spreadsheet
Version:
A spreadsheet component
12 lines (11 loc) • 455 B
TypeScript
import { PropsOf } from "../../types/props_of";
import { SpreadsheetChildEnv } from "../../types/spreadsheet_env";
import { Highlight } from "../highlight/highlight/highlight";
import { Component } from "../../owl3_compatibility_layer";
export declare class Selection extends Component<SpreadsheetChildEnv> {
static template: string;
static components: {
Highlight: typeof Highlight;
};
get highlightProps(): PropsOf<Highlight>;
}