meet-simen
Version:
Get to know Simen via `npx meet-simen`
33 lines (32 loc) • 575 B
TypeScript
export interface CliOptions {
debug?: boolean;
remote?: boolean;
bio?: boolean;
social?: boolean;
ad?: boolean;
clear?: boolean;
[key: string]: unknown;
}
export interface Config {
github: {
username: string;
};
ad: {
message: string;
color: string;
};
remoteDataUrl: string;
}
export interface Bio {
name: string;
title: string;
description: string;
}
export interface Social {
links: {
name: string;
url: string;
icon: string;
color: string;
}[];
}