# Type aliases
Strings decodes JSON stirng or array of strings or `null` into Go slice of string: - If JSON value is an array of string, it's decoded directly into Go slice: ["one", "two", "three"] -> ["one", "tho", "three"] - JSON string value decoded into singleton Go slice: "Helllo" -> ["Hello"] - JSON `null` value decoded into an empty slice: null -> [].