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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
| // This is a mirror of the JS API definitions in `spec/js-api`, but with comments
| // written to provide user-facing documentation rather than to specify behavior for
| // implementations.
|
| export {
| AsyncCompiler,
| CompileResult,
| Compiler,
| compile,
| compileAsync,
| compileString,
| compileStringAsync,
| initCompiler,
| initAsyncCompiler,
| } from './compile';
| export {
| deprecations,
| Deprecation,
| Deprecations,
| DeprecationOrId,
| DeprecationStatus,
| Version,
| } from './deprecations';
| export {Exception} from './exception';
| export {
| CanonicalizeContext,
| FileImporter,
| Importer,
| ImporterResult,
| NodePackageImporter,
| } from './importer';
| export {Logger, LoggerWarnOptions, SourceSpan, SourceLocation} from './logger';
| export {
| CustomFunction,
| Options,
| OutputStyle,
| StringOptions,
| StringOptionsWithImporter,
| StringOptionsWithoutImporter,
| Syntax,
| } from './options';
| export {PromiseOr} from './util/promise_or';
| export {
| CalculationInterpolation,
| CalculationOperation,
| CalculationOperator,
| CalculationValue,
| ChannelName,
| ChannelNameHsl,
| ChannelNameHwb,
| ChannelNameLch,
| ChannelNameLab,
| ChannelNameRgb,
| ChannelNameXyz,
| ColorSpaceHsl,
| ColorSpaceHwb,
| ColorSpaceLch,
| ColorSpaceLab,
| ColorSpaceRgb,
| ColorSpaceXyz,
| GamutMapMethod,
| HueInterpolationMethod,
| KnownColorSpace,
| ListSeparator,
| PolarColorSpace,
| RectangularColorSpace,
| SassArgumentList,
| SassBoolean,
| SassCalculation,
| SassColor,
| SassFunction,
| SassList,
| SassMap,
| SassMixin,
| SassNumber,
| SassString,
| Value,
| sassFalse,
| sassNull,
| sassTrue,
| } from './value';
|
| // Legacy APIs
| export {LegacyException} from './legacy/exception';
| export {
| FALSE,
| LegacyAsyncFunction,
| LegacyAsyncFunctionDone,
| LegacyFunction,
| LegacySyncFunction,
| LegacyValue,
| NULL,
| TRUE,
| types,
| } from './legacy/function';
| export {
| LegacyAsyncImporter,
| LegacyImporter,
| LegacyImporterResult,
| LegacyImporterThis,
| LegacySyncImporter,
| } from './legacy/importer';
| export {
| LegacySharedOptions,
| LegacyFileOptions,
| LegacyStringOptions,
| LegacyOptions,
| } from './legacy/options';
| export {LegacyPluginThis} from './legacy/plugin_this';
| export {LegacyResult, render, renderSync} from './legacy/render';
|
| /**
| * Information about the Sass implementation. This always begins with a unique
| * identifier for the Sass implementation, followed by U+0009 TAB, followed by
| * its npm package version. Some implementations include additional information
| * as well, but not in any standardized format.
| *
| * * For Dart Sass, the implementation name is `dart-sass`.
| * * For Node Sass, the implementation name is `node-sass`.
| * * For the embedded host, the implementation name is `sass-embedded`.
| */
| export const info: string;
|
|