@@ -872,9 +872,8 @@ export class DataAPIDate implements TableCodec<typeof DataAPIDate> {
872
872
static now(): DataAPIDate ;
873
873
static ofEpochDay(epochDays : number ): DataAPIDate ;
874
874
static ofYearDay(year : number , dayOfYear : number ): DataAPIDate ;
875
- // @beta
875
+ plus( duration : DataAPIDuration | string ) : DataAPIDate ;
876
876
toDate(base ? : Date | DataAPITime ): Date ;
877
- // @beta
878
877
toDateUTC(base ? : Date | DataAPITime ): Date ;
879
878
toString(): string ;
880
879
static utcnow(): DataAPIDate ;
@@ -920,15 +919,10 @@ export class DataAPIDuration implements TableCodec<typeof DataAPIDuration> {
920
919
readonly months: number ;
921
920
readonly nanoseconds: bigint ;
922
921
negate(): DataAPIDuration ;
923
- // (undocumented)
924
922
static readonly NS_PER_HOUR = 3600000000000n ;
925
- // (undocumented)
926
923
static readonly NS_PER_MIN = 60000000000n ;
927
- // (undocumented)
928
924
static readonly NS_PER_MS = 1000000n ;
929
- // (undocumented)
930
925
static readonly NS_PER_SEC = 1000000000n ;
931
- // (undocumented)
932
926
static readonly NS_PER_US = 1000n ;
933
927
plus(other : DataAPIDuration ): DataAPIDuration | null ;
934
928
toHours(): number ;
@@ -1052,9 +1046,7 @@ export class DataAPITime implements TableCodec<typeof DataAPITime> {
1052
1046
static ofNanoOfDay(nanoOfDay : number ): DataAPITime ;
1053
1047
static ofSecondOfDay(secondOfDay : number ): DataAPITime ;
1054
1048
readonly seconds: number ;
1055
- // @beta
1056
1049
toDate(base ? : Date | DataAPIDate ): Date ;
1057
- // @beta
1058
1050
toDateUTC(base ? : Date | DataAPIDate ): Date ;
1059
1051
toString(): string ;
1060
1052
static utcnow(): DataAPITime ;
@@ -1948,8 +1940,6 @@ export interface TableDesCtx extends BaseDesCtx<TableCodecSerDesFns> {
1948
1940
// (undocumented)
1949
1941
next: never ;
1950
1942
// (undocumented)
1951
- populateSparseData: boolean ;
1952
- // (undocumented)
1953
1943
tableSchema: ListTableColumnDefinitions ;
1954
1944
}
1955
1945
@@ -2145,14 +2135,6 @@ export class TooManyDocumentsToCountError extends DataAPIError {
2145
2135
readonly limit: number ;
2146
2136
}
2147
2137
2148
- // @public
2149
- export class TooManyRowsToCountError extends DataAPIError {
2150
- // @internal
2151
- constructor (limit : number , hitServerLimit : boolean );
2152
- readonly hitServerLimit: boolean ;
2153
- readonly limit: number ;
2154
- }
2155
-
2156
2138
// @public (undocumented)
2157
2139
export type TypeCodec <Fns extends CodecSerDesFns > = Pick <Fns , ' deserialize' > & {
2158
2140
type: string ;
0 commit comments