export function isSecretReferenceContentType()

in src/common/contentType.ts [56:62]


export function isSecretReferenceContentType(contentType: ContentType | undefined): boolean {
    const mediaType = contentType?.mediaType;
    if (!mediaType) {
        return false;
    }
    return mediaType === secretReferenceContentType;
}