UNPKG
stimulsoft-forms
Version:
latest (2026.2.4)
2026.2.4
2026.2.3
2026.2.2
2026.2.1
2026.1.7
2026.1.6
2026.1.5
2026.1.4
2026.1.3
2026.1.2
2026.1.1
2025.4.3
2025.4.2
2025.4.1
2025.3.5
2025.3.4
2025.3.3
2025.3.2
2025.3.1
2025.2.5
2025.2.4
2025.2.3
2025.2.2
2025.2.1
2025.1.6
2025.1.5
2025.1.4
2025.1.3
2025.1.2
2025.1.1
2024.4.5
2024.4.4
2024.4.3
2024.4.2
2024.4.1
2024.3.6
2024.3.5
2024.3.4
2024.3.3
2024.3.2
2024.3.1
2024.2.6
2024.2.5
2024.2.4
2024.2.3
2024.2.2
2024.2.1
2024.1.4
2024.1.3
2024.1.2
2024.1.1
2023.4.4
2023.4.3
2023.4.2
2023.4.2-b
2023.4.1
2023.3.4
2023.3.3
2023.3.2
2023.3.1
2023.2.8
2023.2.7
2023.2.6
2023.2.5
2023.2.4
2023.2.3
2023.2.2
2023.2.1
2023.1.8
2023.1.7
2023.1.6
2023.1.5
2023.1.4
2023.1.3
2023.1.3-a
0.0.66
0.0.62
0.0.57
0.0.25
0.0.18
0.0.17
0.0.16
0.0.15
0.0.14
0.0.13
Stimulsoft PDF Forms
www.stimulsoft.com/en/products/forms
stimulsoft-forms
/
lib
/
system
/
Dictionary.d.ts
11 lines
(10 loc)
•
234 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import Hashtable
from
"./Hashtable"
; export
default
class
Dictionary
<
K
,
V
>
extends
Hashtable
<
K
,
V
> {
get
pairs
(): Array<
{ key: K;
value
: V; }>; tryGetValue(key: K,
out
: {
ref
: V; }): boolean; }