6 lines
175 B
TypeScript
6 lines
175 B
TypeScript
|
|
export interface PaneDimensions {
|
||
|
|
paneWidth: number;
|
||
|
|
windowWidth: number;
|
||
|
|
}
|
||
|
|
export declare function getPaneDimensions(paneId: string): Promise<PaneDimensions | null>;
|