mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 15:48:10 +00:00
7 lines
211 B
TypeScript
7 lines
211 B
TypeScript
import Client from "./client";
|
|
import Service from "./service";
|
|
declare class ApiKeyAuthenticatedService extends Service {
|
|
protected constructor(client: Client);
|
|
}
|
|
export default ApiKeyAuthenticatedService;
|