Skip to content

Commit

Permalink
chore: extract api
Browse files Browse the repository at this point in the history
  • Loading branch information
afnx committed Apr 5, 2024
1 parent 10b58a9 commit cd7d550
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions packages/amplify-appsync-simulator/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ export class AmplifyAppSyncSimulator {
// (undocumented)
init(config: AmplifyAppSyncSimulatorConfig): void;
// (undocumented)
get localhostUrl(): string;
// (undocumented)
get isHttps(): boolean;
// (undocumented)
get localhostUrl(): string;
// (undocumented)
get pubsub(): PubSub;
// (undocumented)
reload(config: AmplifyAppSyncSimulatorConfig): void;
Expand Down Expand Up @@ -270,6 +270,8 @@ export type AppSyncSimulatorSchemaConfig = AppSyncMockFile;
export type AppSyncSimulatorServerConfig = {
port?: number;
wsPort?: number;
sslKeyPath?: string;
sslCertPath?: string;
};

// @public (undocumented)
Expand Down
3 changes: 2 additions & 1 deletion packages/amplify-cli-core/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,8 @@ export interface AmplifyInternalOnlyPostEnvRemoveEventData {
// @public (undocumented)
export class AmplifyNodePkgDetector {
// (undocumented)
detectAffectedDirectDependencies: (dependencyToSearch: string) => Array<DetectedDependency> | [];
detectAffectedDirectDependencies: (dependencyToSearch: string) => Array<DetectedDependency> | [
];
// (undocumented)
static getInstance: (amplifyDetectorProps: AmplifyNodePkgDetectorProps) => Promise<AmplifyNodePkgDetector>;
}
Expand Down

0 comments on commit cd7d550

Please sign in to comment.