Interface representing information about a previewer.

This interface defines the structure for specifying details about a previewer, including its name, file location, and file pattern.

interface PreviewInfo {
    comments?: string[];
    file: string;
    filePattern: string;
    isDefault?: string;
    name: string;
}

Properties

comments?: string[]
file: string
filePattern: string
isDefault?: string
name: string