mirror of https://github.com/pulumi/pulumi.git
10 lines
297 B
TypeScript
10 lines
297 B
TypeScript
// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
|
|
|
|
import { Resource } from "./resource";
|
|
|
|
// Allocate a new resource. When this exists, we should not allow
|
|
// the stack holding it to be `rm`'d without `--force`.
|
|
let a = new Resource("res", { state: 1 });
|
|
|
|
export let o = a.state;
|