Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/aws-cdk/lib/logging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function data(fmt: string, ...args: any[]) {
console.log(util.format(fmt, ...args));
}

type LoggerFunction = (fmt: string, ...args: any[]) => void;
export type LoggerFunction = (fmt: string, ...args: any[]) => void;

/**
* Create a logger output that features a constant prefix string.
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk/lib/renames.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import cxapi = require('@aws-cdk/cx-api');
import util = require('@aws-cdk/util');

type RenameTable = {[key: string]: string};
export type RenameTable = {[key: string]: string};

/**
* A class used to maintain a set of rename directives
Expand Down