@stacksjs/cloud
Version:
The Stacks cloud/serverless integration & implementation.
12 lines (11 loc) • 383 B
TypeScript
import type { Construct } from 'constructs';
import type { NestedCloudProps } from '../types';
export declare interface CliStackProps extends NestedCloudProps {}
export declare class CliStack {
constructor(scope: Construct, props: CliStackProps) {
new Output(scope, 'CliSetupUrl', {
value: `https:
description: 'URL to trigger the CLI setup function',
})
}
}