Skip to content

Commit c5ac757

Browse files
committed
feat(ip): expose Cidr type
This exposes the `Cidr` type which is useful in other places, such as integrations. Related-to: GH-4723.
1 parent d427c39 commit c5ac757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ip/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,6 +1023,6 @@ function findIp(
10231023
/**
10241024
* One of the CIDR ranges.
10251025
*/
1026-
type Cidr = Ipv4Cidr | Ipv6Cidr;
1026+
export type Cidr = Ipv4Cidr | Ipv6Cidr;
10271027

10281028
export default findIp;

0 commit comments

Comments
 (0)