Skip to content

Commit

Permalink
#98 - Rebuilt artifacts.
Browse files Browse the repository at this point in the history
  • Loading branch information
elycruz committed Jul 21, 2022
1 parent 2885fce commit 909ff2d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
3 changes: 1 addition & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions ts3.5/dist/types.d.ts
Expand Up @@ -16,10 +16,11 @@ export interface RollupPluginSassOptions {
output?: boolean | string | RollupPluginSassOutputFn;
runtime?: any;
}
export declare type SassImporterResult = null | {
file?: string;
contents?: string;
} | Error;
export declare type SassImporterResult = {
file: string;
} | {
contents: string;
} | Error | null;
export declare type SassDoneFn<T extends SassImporterResult = SassImporterResult> = (result: T) => void | T;
export declare type SassImporter<T extends SassImporterResult = SassImporterResult> = (url: string, prev: string, done: SassDoneFn<T>) => void | T;
export interface SassFunctionsObject {
Expand Down

0 comments on commit 909ff2d

Please sign in to comment.