- Allows user to choose collection replay home page and collection thumbnail (resolves https://github.com/webrecorder/browsertrix/issues/2182) - Displays collection thumbnails on org dashboard and public page - Enables downloading public collection (resolves https://github.com/webrecorder/browsertrix/issues/2233) - Adds caption as "Summary" to metadata dialog - Moves description editor to "About" tab --------- Co-authored-by: Emma Segal-Grossman <hi@emma.cafe>
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
declare module "*.avif";
|
|
declare module "*.svg";
|
|
declare module "*.webp";
|
|
declare module "*.css";
|
|
declare module "regex-colorize";
|
|
|
|
/**
|
|
* Flattens to a normal string type, but preserves string literal suggestions
|
|
*/
|
|
type AnyString = string & {};
|