This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-03-16 19:39:07 +00:00
|
|
|
declare module "*.css";
|
2021-11-26 12:30:39 +00:00
|
|
|
declare module "*.md" {
|
|
|
|
const html: string;
|
2021-12-16 11:18:43 +00:00
|
|
|
const metadata: { [key: string]: string };
|
2021-11-26 12:30:39 +00:00
|
|
|
const filename: string;
|
|
|
|
}
|
2021-06-13 21:08:15 +00:00
|
|
|
|
|
|
|
declare namespace Intl {
|
|
|
|
class ListFormat {
|
|
|
|
constructor(locale: string, args: { [key: string]: string });
|
|
|
|
public format: (items: string[]) => string;
|
|
|
|
}
|
|
|
|
}
|