-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathindex.ts
55 lines (48 loc) · 1.66 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright 2021 Google Inc. Use of this source code is governed by an
// MIT-style license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
import * as pkg from '../package.json';
import {sassFalse, sassTrue} from './src/value/boolean';
import {sassNull} from './src/value/null';
export {ListSeparator, SassList} from './src/value/list';
export {SassArgumentList} from './src/value/argument-list';
export {sassFalse, sassTrue} from './src/value/boolean';
export {SassColor} from './src/value/color';
export {SassFunction} from './src/value/function';
export {SassMap} from './src/value/map';
export {SassMixin} from './src/value/mixin';
export {SassNumber} from './src/value/number';
export {SassString} from './src/value/string';
export {Value} from './src/value';
export {sassNull} from './src/value/null';
export {
CalculationOperation,
CalculationOperator,
CalculationInterpolation,
SassCalculation,
} from './src/value/calculations';
export * as types from './src/legacy/value';
export {Exception} from './src/exception';
export {
compile,
compileString,
compileAsync,
compileStringAsync,
NodePackageImporter,
} from './src/compile';
export {initAsyncCompiler, AsyncCompiler} from './src/compiler/async';
export {initCompiler, Compiler} from './src/compiler/sync';
export {
deprecations,
Deprecation,
DeprecationOrId,
DeprecationStatus,
Version,
} from './src/deprecations';
export {render, renderSync} from './src/legacy';
export const info = `sass-embedded\t${pkg.version}`;
export {Logger} from './src/logger';
// Legacy JS API
export const TRUE = sassTrue;
export const FALSE = sassFalse;
export const NULL = sassNull;