mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-17 23:42:51 +00:00
10 lines
308 B
TypeScript
10 lines
308 B
TypeScript
import { CSSToken } from '@csstools/css-tokenizer';
|
|
interface TokenConvertible {
|
|
tokens(): Array<CSSToken>;
|
|
}
|
|
/**
|
|
* Returns the start and end index of a node in the CSS source string.
|
|
*/
|
|
export declare function sourceIndices(x: TokenConvertible | Array<TokenConvertible>): [number, number];
|
|
export {};
|