Got the basics working with angular

This commit is contained in:
2021-07-31 08:56:49 -04:00
parent e5ef4d8847
commit edbfd8bb9e
18 changed files with 3131 additions and 27 deletions
@@ -1,3 +1,19 @@
export interface Message {
message: string;
}
export interface UploadDto {
url: string;
}
export interface QueueDto {
format: string;
url: string;
title?: string;
extractor?: string;
}
export type JobEvent = {
job?: unknown;
err?: Error;
};