source: imaps-frontend/node_modules/nano-css/addon/vcssom/cssToTree.d.ts@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 379 bytes
Line 
1import {CssLikeObject} from '../../types/common';
2
3export interface Css {
4 [key: string]: CssLikeObject[keyof CssLikeObject] | Css;
5}
6
7export interface Tree {
8 [atRulePrelude: string]: {
9 [selector: string]: {
10 [property: string]: CssLikeObject;
11 };
12 };
13}
14
15export function cssToTree(tree: {}, css: Css, selector: string, prelude: string): Tree;
Note: See TracBrowser for help on using the repository browser.