FileContent type

Signature:

export type FileContent = {
    location: "remote";
    url: string;
} | {
    location: "local";
    text: string;
};