Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rewrite AdminPage.js into Typescript #2996

Merged
merged 21 commits into from
Aug 23, 2021
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions js/src/@types/global.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
/**
* A type that matches any valid value for the `type` attribute on an
* HTML `<input>` element.
*/
declare type HTMLInputTypes =
davwheat marked this conversation as resolved.
Show resolved Hide resolved
| 'button'
| 'checkbox'
| 'color'
| 'date'
| 'datetime-local'
| 'email'
| 'file'
| 'hidden'
| 'image'
| 'month'
| 'number'
| 'password'
| 'radio'
| 'range'
| 'reset'
| 'search'
| 'submit'
| 'tel'
| 'text'
| 'time'
| 'url'
| 'week';

/**
* @deprecated Please import `app` from a namespace instead of using it as a global variable.
*
Expand Down
177 changes: 0 additions & 177 deletions js/src/admin/components/AdminPage.js

This file was deleted.

Loading