UNPKG

631 BTypeScriptView Raw
1import * as d from './declarations';
2/**
3 * Helper type to note which plugin methods are defined for this plugin.
4 */
5type WithRequired<T, K extends keyof T> = T & {
6 [P in K]-?: T[P];
7};
8/**
9 * The entrypoint of the Stencil Sass plugin
10 *
11 * This function creates & configures the plugin to be used by consuming Stencil projects
12 *
13 * For configuration details, please see the [GitHub README](https://github.com/ionic-team/stencil-sass).
14 *
15 * @param opts options to configure the plugin
16 * @return the configured plugin
17 */
18export declare function sass(opts?: d.PluginOptions): WithRequired<d.Plugin, 'transform'>;
19export {};