@rindo/sass
Version:
The Rindo Sass Plugin
20 lines (19 loc) • 623 B
TypeScript
import * as d from './declarations';
/**
* Helper type to note which plugin methods are defined for this plugin.
*/
type WithRequired<T, K extends keyof T> = T & {
[P in K]-?: T[P];
};
/**
* The entrypoint of the Rindo Sass plugin
*
* This function creates & configures the plugin to be used by consuming Rindo projects
*
* For configuration details, please see the [GitHub README](https://github.com/familyjs/rindo-sass).
*
* @param opts options to configure the plugin
* @return the configured plugin
*/
export declare function sass(opts?: d.PluginOptions): WithRequired<d.Plugin, 'transform'>;
export {};