1interface anon { 2 enum error { 3 success, 4 failure, 5 } 6 7 option-test: func() -> result<option<string>, error> 8} 9 10world the-world { 11 import imports: anon 12 export exports: anon 13 default export anon 14} 15