mirror of
https://github.com/usual2970/certimate.git
synced 2025-08-23 09:41:46 +00:00
.github
.vscode
docker
internal
migrations
ui
public
src
types
global.d.ts
global.utility.d.ts
.eslintrc.cjs
.gitignore
.prettierrc.cjs
components.json
embed.go
index.html
package-lock.json
package.json
postcss.config.js
tailwind.config.js
tsconfig.app.json
tsconfig.json
tsconfig.node.json
vite.config.ts
.dockerignore
.editorconfig
.gitignore
.goreleaser.yml
CHANGELOG.md
CONTRIBUTING.md
CONTRIBUTING_EN.md
Dockerfile
LICENSE.md
Makefile
README.md
README_EN.md
go.mod
go.sum
main.go
nixpacks.toml
usage.gif
8 lines
107 B
TypeScript
8 lines
107 B
TypeScript
declare global {
|
|
type Nullish<T> = {
|
|
[P in keyof T]?: T[P] | null | undefined;
|
|
};
|
|
}
|
|
|
|
export {};
|