Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99850890
limitNumber.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jan 26, 23:13
Size
386 B
Mime Type
text/x-java
Expires
Tue, Jan 28, 23:13 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23834307
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
limitNumber.d.ts
View Options
import type { CodeKeywordDefinition, ErrorObject } from "../../types";
type Kwd = "maximum" | "minimum" | "exclusiveMaximum" | "exclusiveMinimum";
type Comparison = "<=" | ">=" | "<" | ">";
export type LimitNumberError = ErrorObject<Kwd, {
limit: number;
comparison: Comparison;
}, number | {
$data: string;
}>;
declare const def: CodeKeywordDefinition;
export default def;
Event Timeline
Log In to Comment