insomnia-plugin-thanos-theme
Version:
A theme made by a Titan to conquer the universe
21 lines (17 loc) • 338 B
text/typescript
const eternals: (string | number)[] = ["powerful", 99]
type CustomType = { this: string; that: number; then: boolean }
export type Props = {
firstProperty: any
secondProperty: string
customProperty: CustomType
}
enum Direction {
up = 1,
down,
left,
right,
}
const test = {
this: "is a test",
that: "is not a test",
}