hookshot/web/typings/images.d.ts
Andrew Ferrazzutti db8221b60a
Allow GitLab connections without hook permissions (#567)
* Allow GitLab connections without hook permissions

Warn instead of fail when connecting a GitLab project that Hookshot
cannot provision a webhook for.

* Mention manual "Secret token" for GitLab webhooks

* Refactor warning pane into a separate component

* Recolour warning pane for better contrast
2022-11-08 10:19:41 -05:00

8 lines
147 B
TypeScript

declare module "*.png" {
const content: string
export = content
}
declare module "*.svg" {
const content: string
export = content
}