Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Fix: Learnt the correct Type
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayplow committed Mar 15, 2019
1 parent a640e64 commit cb220f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ declare module "node-sass" {
}
type RenderResult = {
/** The compiled CSS. Write this to a file, or serve it out as needed. */
css: Uint8Array;
map: Uint8Array | undefined;
css: Buffer;
map: Buffer | undefined;
stats: {
entry: string;
start: number;
Expand Down

0 comments on commit cb220f7

Please sign in to comment.