Describes a file generator with its name, URL, and an optional icon.

interface FileGenerator {
    icon?: string;
    name: string;
    url: string;
}

Properties

Properties

icon?: string

Optional. A URL or a path to an icon representing the file generator.

name: string

The name of the file generator.

url: string

The URL where the file generator is located or can be accessed.