Fix build error?
All checks were successful
Publish JS SDK / docker (push) Successful in 30s

This commit is contained in:
Braydon 2024-04-15 08:52:10 -04:00
parent d1365ae261
commit 6322af94bb
2 changed files with 5 additions and 3 deletions

@ -1,7 +1,7 @@
/**
* An A record.
*/
interface ARecord extends DNSRecord {
export interface ARecord extends DNSRecord {
/**
* The address of this record, undefined if unresolved.
*/
@ -11,7 +11,7 @@ interface ARecord extends DNSRecord {
/**
* An SRV record.
*/
interface SRVRecord extends DNSRecord {
export interface SRVRecord extends DNSRecord {
/**
* The priority of this record.
*/
@ -36,7 +36,7 @@ interface SRVRecord extends DNSRecord {
/**
* A representation of a DNS record.
*/
type DNSRecord = {
export type DNSRecord = {
/**
* The type of this record.
*/

@ -1,3 +1,5 @@
import { ARecord, SRVRecord } from "../dns";
/**
* A model representing a Minecraft server.
*/