liudong
2023-05-29 340f156319b863525e50e900c58e59b86ecb3d5e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
    "all": "any type",
    "application": {
        "array": "<%= prefix %> <%= codeTagOpen %>Array<%= codeTagClose %> of <%= application %> <%= suffix %>",
        "object": "<%= prefix %> <%= codeTagOpen %>Object<%= codeTagClose %> with <%= application %> properties <%= suffix %>",
        "objectNonString": "<%= prefix %> <%= codeTagOpen %>Object<%= codeTagClose %> with <%= keyApplication %> keys and <%= application %> properties <%= suffix %>",
        "other": "<%= prefix %> <%= codeTagOpen %><%= type %> containing <%= application %> <%= suffix %>"
    },
    "function": {
        "extended": {
            "new": "Returns <%= functionNew %> when called with <%= codeTagOpen %>new<%= codeTagClose %>.",
            "returns": "Returns <%= type %>.",
            "signature": "function(<%= functionParams %>)",
            "this": "Within the function, <%= codeTagOpen %>this<%= codeTagClose %> refers to <%= functionThis %>."
        },
        "simple": {
            "new": "constructs <%= functionNew %>",
            "returns": "returns <%= type %>",
            "signature": "<%= prefix %> function(<%= functionParams %>) <%= functionReturns %>",
            "this": "<%= codeTagOpen %>this<%= codeTagClose %> = <%= functionThis %>"
        }
    },
    "modifiers": {
        "extended": {
            "nonNullable": "Must not be null.",
            "nullable": "May be null.",
            "optional": "Optional.",
            "prefix": "",
            "repeatable": "May be provided more than once.",
            "suffix": ""
        },
        "simple": {
            "nonNullable": "non-null",
            "nullable": "nullable",
            "optional": "optional",
            "prefix": "<%= optional %> <%= nullable %> <%= repeatable %>",
            "repeatable": "repeatable",
            "suffix": ""
        }
    },
    "name": "<%= codeTagOpen %>{{ name }}<%= codeTagClose %> <%= suffix %>",
    "null": "null",
    "params": {
        "first": {
            "one": "<%= param %>",
            "two": "<%= param %>, ",
            "many": "<%= param %>, "
        },
        "middle": {
            "many": "<%= param %>, "
        },
        "last": {
            "two": "<%= param %>",
            "many": "<%= param %>"
        }
    },
    "record": {
        "first": {
            "one": "<%= prefix %> {<%= field %>} <%= suffix %>",
            "two": "<%= prefix %> {<%= field %>, ",
            "many": "<%= prefix %> {<%= field %>, "
        },
        "middle": {
            "many": "<%= field %>, "
        },
        "last": {
            "two": "<%= field %>} <%= suffix %>",
            "many": "<%= field %>} <%= suffix %>"
        }
    },
    "field": {
        "typed": "<%= name %>: <%= type %>",
        "untyped": "<%= name %>"
    },
    "type": "<%= prefix %> <%= codeTagOpen %><%= type %><%= codeTagClose %> <%= suffix %>",
    "undefined": "undefined",
    "union": {
        "first": {
            "one": "<%= prefix %> <%= element %> <%= suffix %>",
            "two": "<%= prefix %> (<%= element %> ",
            "many": "<%= prefix %> (<%= element %>, "
        },
        "middle": {
            "many": "<%= element %>, "
        },
        "last": {
            "two": "or <%= element %>) <%= suffix %>",
            "many": "or <%= element %>) <%= suffix %>"
        }
    },
    "unknown": "unknown"
}