heroku-kafka
Version:
heroku plugin to manage heroku kafka
11 lines (10 loc) • 355 B
TypeScript
import { Addon } from './shared.js';
interface HerokuClient {
get(path: string, options?: any): Promise<any>;
post(path: string, options?: any): Promise<any>;
}
declare const _default: (heroku: HerokuClient) => {
addon: (app: string, cluster?: string) => Promise<Addon>;
all: (app: string) => Promise<Addon[]>;
};
export default _default;