Skip to content

Commit

Permalink
chore: dependencies update
Browse files Browse the repository at this point in the history
  • Loading branch information
victorfernandesraton committed Aug 3, 2024
1 parent 14b22c5 commit 14f48c8
Show file tree
Hide file tree
Showing 4 changed files with 305 additions and 288 deletions.
14 changes: 7 additions & 7 deletions dist/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ declare module "service/index" {
*/
handler(_zipcode: string | number): Promise<Cep>;
}
export type Cep = import("types").Cep;
export type RequestWIthFetch = import("requester/index").RequestWIthFetch;
export type Cep = import("types.js").Cep;
export type RequestWIthFetch = import("requester/index.mjs").RequestWIthFetch;
}
declare module "provider" {
/**
Expand All @@ -82,8 +82,8 @@ declare module "provider" {
execute(zipcode: string | number): Promise<Cep>;
#private;
}
export type Cep = import("types").Cep;
export type CepService = import("service/index").CepService;
export type Cep = import("types.js").Cep;
export type CepService = import("service/index.mjs").CepService;
}
declare module "service/brasilAPI/index" {
export class BrasilAPIService extends CepService {
Expand Down Expand Up @@ -133,7 +133,7 @@ declare module "factory" {
custonProviders?: any[] | undefined;
requester?: RequestWIthFetch | undefined;
}): Provider;
export type CepService = import("service/index").CepService;
export type CepService = import("service/index.mjs").CepService;
export type Params = {
useDefaultProviders?: boolean | undefined;
custonProviders?: import("service/index.mjs").CepService[] | undefined;
Expand All @@ -144,7 +144,7 @@ declare module "factory" {
}
declare module "cep" {
export function cep(zipcode: string | number): Promise<Cep>;
export type Cep = import("types").Cep;
export type Cep = import("types.js").Cep;
}
declare module "index" {
export const service: typeof CepService;
Expand All @@ -166,7 +166,7 @@ declare module "service/apicep/index" {
/**
* @param {import('../index.mjs').RequestWIthFetch} request
*/
constructor(request: import('../index.mjs').RequestWIthFetch);
constructor(request: import("service/index.mjs").RequestWIthFetch);
/**
* @typedef {import('../../types.js').Cep} Cep
* @param {string} cep
Expand Down
Loading

0 comments on commit 14f48c8

Please sign in to comment.