main
Last change
on this file 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 | |
---|
1 | import {CssLikeObject} from '../../types/common';
|
---|
2 |
|
---|
3 | export interface Css {
|
---|
4 | [key: string]: CssLikeObject[keyof CssLikeObject] | Css;
|
---|
5 | }
|
---|
6 |
|
---|
7 | export interface Tree {
|
---|
8 | [atRulePrelude: string]: {
|
---|
9 | [selector: string]: {
|
---|
10 | [property: string]: CssLikeObject;
|
---|
11 | };
|
---|
12 | };
|
---|
13 | }
|
---|
14 |
|
---|
15 | export function cssToTree(tree: {}, css: Css, selector: string, prelude: string): Tree;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.