Files
personal-stat-tracker/frontend/node_modules/@adobe/css-tools/dist/cjs/CssPosition.d.ts
2022-11-23 15:48:57 -06:00

22 lines
389 B
TypeScript

/**
* Store position information for a node
*/
export default class Position {
start: {
line: number;
column: number;
};
end: {
line: number;
column: number;
};
source?: string;
constructor(start: {
line: number;
column: number;
}, end: {
line: number;
column: number;
}, source: string);
}