mirror of https://github.com/pulumi/pulumi.git
8 lines
255 B
TypeScript
8 lines
255 B
TypeScript
![]() |
// Copyright 2016-2023, Pulumi Corporation. All rights reserved.
|
||
|
|
||
|
export const number = 0;
|
||
|
export const undef = undefined;
|
||
|
export const nil = null;
|
||
|
export const list = [0, undefined, null]
|
||
|
export const map = { number2: 0, undef2: undefined, nil2: null }
|