You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
339 B
12 lines
339 B
// for ephemeral uses, eg. passing a blob from the service worker to the main thread
|
|
|
|
export type Temp = {
|
|
id: string;
|
|
blob?: Blob; // deprecated because webkit (Safari) does not support Blob
|
|
blobB64?: string; // base64-encoded blob
|
|
};
|
|
|
|
/**
|
|
* Schema for the Temp table in the database.
|
|
*/
|
|
export const TempSchema = { temp: "id" };
|
|
|