UNPKG

construct-hub-probe

Version:

This repository contains a package intended to be used a probe to test construct hub instances. It automatically publishes a new version every 2 hours, allowing for construct hub canaries to verify its availability on construct hub instances.

17 lines (16 loc) 416 B
import { Construct } from 'constructs'; /** * Properties for 'SampleRepositoryProps'. */ export interface SampleRepositoryProps { /** * Repository name. */ readonly name: string; } /** * SampleRepository is a repository that only allows configuring its. */ export declare class SampleRepository extends Construct { constructor(scope: Construct, id: string, props: SampleRepositoryProps); }