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

Commit cb220f7

Browse files
committed
Fix: Learnt the correct Type
1 parent a640e64 commit cb220f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ declare module "node-sass" {
198198
}
199199
type RenderResult = {
200200
/** The compiled CSS. Write this to a file, or serve it out as needed. */
201-
css: Uint8Array;
202-
map: Uint8Array | undefined;
201+
css: Buffer;
202+
map: Buffer | undefined;
203203
stats: {
204204
entry: string;
205205
start: number;

0 commit comments

Comments
 (0)