LoggerWarnOptions
LoggerWarnOptions : ({
deprecation: true;
deprecationType: Deprecation;
} | {
deprecation: false;
}) & {
span?: SourceSpan;
stack?: string;
}
deprecation: true;
deprecationType: Deprecation;
} | {
deprecation: false;
}) & {
span?: SourceSpan;
stack?: string;
}
传递给 warn 的选项。
deprecation:这是否是一个弃用警告。deprecationType:弃用的类型。仅当deprecation为 true 时设置。span:在 Sass 源代码中生成此警告的位置。如果警告不是来自 Sass 源代码,例如来自已弃用的 JavaScript 选项,则此值可能未设置。stack:发出警告时 Sass 的堆栈跟踪。如果警告不是来自 Sass 源代码,例如来自已弃用的 JavaScript 选项,则此值可能未设置。