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