mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
7 lines
256 B
TypeScript
7 lines
256 B
TypeScript
// Conveniently represents flow's "Maybe" type https://flow.org/en/docs/types/maybe/
|
|
type Maybe<T> = null | undefined | T;
|
|
|
|
// See https://github.com/typescript-eslint/typescript-eslint/issues/131
|
|
// eslint-disable-next-line no-undef
|
|
export default Maybe;
|