interface ConfigurationFile {
    content: string;
    isBase64Encoded: boolean;
    path: string;
}

Properties

content: string

The content of the file.

isBase64Encoded: boolean

Indicates if the content is base64 encoded.

path: string

The full path of the file, relative to the root of the repository.