new GUI() .add({ value: File([], 'foo.png', { type: 'image/png' }) }) // Auto detect .add({ value: Blob([] { type: 'image/png' }) }) .add({ value: '/foo.png' }) .add({ field: 'image' }) // Specify field name .add({ field: new ImageField() }) // Provide field instance
Generated using TypeDoc
Image field
new GUI() .add({ value: File([], 'foo.png', { type: 'image/png' }) }) // Auto detect .add({ value: Blob([] { type: 'image/png' }) }) .add({ value: '/foo.png' }) .add({ field: 'image' }) // Specify field name .add({ field: new ImageField() }) // Provide field instance
Preview