fragment-shader
Advanced tools
Comparing version 4.1.1 to 4.1.2
{ | ||
"name": "fragment-shader", | ||
"version": "4.1.1", | ||
"version": "4.1.2", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "main": "./index.ts", |
@@ -1,2 +0,2 @@ | ||
import { type Uniform } from './uniforms'; | ||
import { type UniformTuple } from './uniforms'; | ||
@@ -7,3 +7,3 @@ export type SupportedLanguage = 'HTML' | 'GLSL'; | ||
parent?: HTMLElement | string; | ||
uniforms?: Uniform[]; | ||
uniforms?: UniformTuple[]; | ||
onUpdate?: (update?: string) => void; | ||
@@ -10,0 +10,0 @@ language?: SupportedLanguage; |
import Uniform from '../classes/Uniform'; | ||
import { type Uniform as UniformType } from './uniforms'; | ||
import { type UniformTuple } from './uniforms'; | ||
import { type Artboard } from './artboard'; | ||
@@ -12,3 +12,3 @@ | ||
fragmentShader?: string; | ||
uniforms?: UniformType[]; | ||
uniforms?: UniformTuple[]; | ||
animate?: boolean; | ||
@@ -22,5 +22,5 @@ shader?: string; | ||
volume: number; | ||
internalUniforms: UniformType[]; | ||
internalUniforms: UniformTuple[]; | ||
stream: number; | ||
animate: boolean; | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
41361