summaryrefslogtreecommitdiff
path: root/packages/web-util/src/custom.d.ts
blob: 6049ac6a99f8c3253245b9c1a6659793d456c9b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
declare module "*.crt" {
  const content: string;
  export default content;
}
declare module "*.key" {
  const content: string;
  export default content;
}
declare module "*.html" {
  const content: string;
  export default content;
}