mirror of https://github.com/vladmandic/human
enable canvas patching for nodejs
parent
6dbe8fce42
commit
ddf9239ccd
|
@ -26,6 +26,8 @@ export interface Env {
|
||||||
adapter: undefined | string,
|
adapter: undefined | string,
|
||||||
},
|
},
|
||||||
kernels: string[],
|
kernels: string[],
|
||||||
|
Canvas: undefined,
|
||||||
|
Image: undefined,
|
||||||
}
|
}
|
||||||
|
|
||||||
export const env: Env = {
|
export const env: Env = {
|
||||||
|
@ -54,6 +56,8 @@ export const env: Env = {
|
||||||
adapter: undefined,
|
adapter: undefined,
|
||||||
},
|
},
|
||||||
kernels: [],
|
kernels: [],
|
||||||
|
Canvas: undefined,
|
||||||
|
Image: undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
export function cpuinfo() {
|
export function cpuinfo() {
|
||||||
|
|
Loading…
Reference in New Issue