local-network-access.idl (427B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: Local Network Access (https://wicg.github.io/local-network-access/) 5 6 enum IPAddressSpace { "public", "local", "loopback" }; 7 8 partial dictionary RequestInit { 9 IPAddressSpace targetAddressSpace; 10 }; 11 12 partial interface Request { 13 readonly attribute IPAddressSpace targetAddressSpace; 14 };