function test_getPromise_with_options() {
    // $ExpectType Promise<Component[]>
    fingerprint2.getPromise({ excludes: { userAgent: true } });
}
function test_getPromise_default_settings() {
    // $ExpectType Promise<Component[]>
    fingerprint2.getPromise();
}