mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-09 04:18:51 +08:00
9 lines
302 B
TypeScript
9 lines
302 B
TypeScript
/// <reference path="sass-graph.d.ts" />
|
|
|
|
import { parseFile, parseDir, Graph } from "sass-graph";
|
|
|
|
// Example copied from readme:
|
|
// https://github.com/xzyfer/sass-graph/blob/master/readme.md
|
|
const graph1: Graph = parseFile("test/fixtures/main.scss");
|
|
const graph2: Graph = parseDir("test/fixtures");
|